home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.06c
- // Copyright (C) 1990, 1991, 1992
- // Software Dimensions
- //
- // BlazeClass
- //
-
- #include "fli.h"
-
- #ifdef __BCPLUSPLUS__
- #pragma hdrstop
- #endif
-
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- //
- // BlazeClass(BlazeClass &_Blaze)
- //
- // Copy-Constructor for BlazeClass
- //
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
- BlazeClass::BlazeClass(BlazeClass &_Blaze)
- {
- OUTPUT=_Blaze.OUTPUT;
- X=_Blaze.X;
- Y=_Blaze.Y;
- Color=_Blaze.Color;
- Scrolling=_Blaze.Scrolling;
- Clip=_Blaze.Clip;
- WinHigh=_Blaze.WinHigh;
- WinWide=_Blaze.WinWide;
- WinX=_Blaze.WinX;
- WinY=_Blaze.WinY;
-
- TopLeft=_Blaze.TopLeft;
- TopCenter=_Blaze.TopCenter;
- TopRight=_Blaze.TopRight;
- CenterLeft=_Blaze.CenterLeft;
- CenterFill=_Blaze.CenterFill;
- CenterRight=_Blaze.CenterRight;
- BottomLeft=_Blaze.BottomLeft;
- BottomCenter=_Blaze.BottomCenter;
- BottomRight=_Blaze.BottomRight;
-
- Center=0;
- FlushRight=0;
- }
-